home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 4 / Hot Mix 4.iso / bin / InstallIt < prev    next >
Text File  |  1993-04-28  |  952b  |  25 lines

  1. #!/bin/csh
  2. # Shell script to install the HOTMIX CD!
  3.  
  4. if (! -e /usr/lib/filetype/install/hotmix.ftr ) then
  5.     xwsh -bg royalblue -fg white \
  6.         -geom 80x20+100+100 -cursorfg violetred1 -cursorbg violetred1 \
  7.         -title "Running the HotMix..." \
  8.         -e /bin/csh -c \
  9.     "echo Welcome to the IRIS Hot Mix.; \
  10.     echo; \
  11.     echo Attempting to install the HotMix icon. This requires super-user priviledges.; \
  12.     echo The installation of this icon does not affect your use of the Hot Mix CD-ROM. ; \
  13.     echo; \
  14.     echo If prompted, please enter the root password.; \
  15.     echo; \
  16.     echo Some application demos will run directly off the CD. ; \
  17.     echo These applications will run slower on the CD ; \
  18.     echo than they will if they are installed on your system. ; \
  19.     echo; \
  20.         su root -c 'bin/InstallIt2'"
  21.     if (! -e /usr/lib/filetype/install/hotmix.ftr) then
  22.        echo "Installation of the HotMix icon failed, you must be root to install the icon."
  23.     endif
  24. endif
  25.